Newer
Older
BlackoutClient / Assets / Best HTTP / Source / Core / IHTTPRequestHandler.cs
@Mark Mark on 30 Jan 2020 631 bytes Added Best HTTP 2 plugin
#if !UNITY_WEBGL || UNITY_EDITOR
using System;
using BestHTTP.Connections;

namespace BestHTTP.Core
{
    public interface IHTTPRequestHandler : IDisposable
    {
        bool HasCustomRequestProcessor { get; }

        KeepAliveHeader KeepAlive { get; }

        bool CanProcessMultiple { get; }

        ShutdownTypes ShutdownType { get; }

        void Process(HTTPRequest request);

        void RunHandler();

        /// <summary>
        /// An immediate shutdown request that called only on application closure.
        /// </summary>
        void Shutdown(ShutdownTypes type);
    }
}

#endif